fix: OLMES matching effort (MC Task Suite)#182
Open
fsschneider wants to merge 17 commits intomainfrom
Open
Conversation
…=100 and train for fewshots;
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
PR Checklist
/docs/).What type of PR is this? (check all applicable)
Description
The changes are part of an "OLMES matching" effort. The changes include:
csqa.py:CommonsenseQAMC_OLMES: SetsFEWSHOT_SPLIT = "train"(was inheriting"validation"from parent)medqa.py:MedQAMC_OLMES: SetsFEWSHOT_SPLIT = "train"(was inheriting"dev"from parent)sciq.py:SCIQ_OLMES: SetsFEWSHOT_SPLIT = "train"(was inheriting"test"from parent)piqa.py:PIQA_OLMES: SetsFEWSHOT_SPLIT = "train"and changes instruction text from"Question: {goal}\n..."to"Goal: {goal}\n...", which is what OLMES is doing.drop.py:DropCompletion_OLMES: Subclass ofDropCompletionwithFEWSHOT_SPLIT = "train"andmax_tokens = 100(vs.50in base)DropMC: Added_get_cue_textreturning"Answer:"(previously inherited empty string""fromBaseTask)_OLMESvariant. This affectscsqa,piqa,sciq, andsocial_iqa.social_iqa.py: Added missing "Answer:" prefix to fewshot samples, via_get_fewshot_target_texttask_names.py: RegistersDropCompletion_OLMEStask-prompts-hashes.json: Added hash forDropCompletion_OLMESand updated hash of tasks whos fewshot split changed.Added/updated tests?
have not been included